iT邦幫忙

2022 iThome 鐵人賽

DAY 21
0
Modern Web

利用JS30逼自己30天完成的筆記系列 第 21

[Day 21] Geolocation

  • 分享至 

  • xImage
  •  
  <script>
    const arrow = document.querySelector('.arrow');
    const speed = document.querySelector('.speed-value');

    navigator.geolocation.watchPosition((data) => {
      console.log(data);
      speed.textContent = data.coords.speed;
      arrow.style.transform = `rotate(${data.coords.heading}deg)`;
    }, (err) => {
      console.error(err);
    });
  </script>

上一篇
[Day 20] Speech Detection
下一篇
[Day 22] Follow Along Link Highlighter
系列文
利用JS30逼自己30天完成的筆記25
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言